home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / pwr14j.zip / README.1ST < prev    next >
Text File  |  1991-05-27  |  7KB  |  146 lines

  1.  
  2.                                    PowerBatch
  3.                          Computing Systems Design, Inc.
  4.                                 P.O. Box 566484
  5.                              Atlanta, GA 30356-6009
  6. There are 13  files on your installation  disk. The two files  SMLMODEL.MDL and
  7. POWERMAK.EXE will  be  placed in  a  directory on  your  DOS search  path.  The
  8. remainder  of  the  files  may be  placed  in  any  directory  you desire.  The
  9. POWERBAT.DOC file is the documentation and  may be viewed with any text  editor
  10. or printed to  your printer with the  DOS print command (ie  print POWERBAT.DOC
  11. <enter>). The files with  an extension of .PWR are PowerBatch  source files and
  12. the text should be printed and studied. You  should compile  these example
  13. files  and  run  the  resulting  programs  to help  familiarize  yourself  with
  14. PowerBatch.  The  file  DEMO1.PWR  uses  all  the  commands  with a  couple  of
  15. exceptions.
  16.  
  17. To install PowerBatch  run the install program  located on the source  disk. If
  18. the source in on a floppy drive enter A:PBINSTAL (or B:PBINSTAL). If the source
  19. is on  a hard drive, change directory to  the directory containing PBINSTAL and
  20. enter
  21.  
  22.    PBINSTALL <enter>
  23.  
  24.                             [More on the next page]
  25.  
  26. If you have purchased a registered copy of PowerBatch, the install program will
  27. recognize this  by the presence  of REGISTER.EXE  on your  diskette. When  this
  28. program is  present, the  copy of PowerBatch  you have  just installed  will be
  29. registered in your name.
  30.  
  31. Your  name  and  serial  number  will  be  imbedded  in  the  software  by  the
  32. registration program. If you give  anyone an evaluation copy of PowerBatch,  DO
  33. NOT PROVIDE THE REGISTRATION PROGRAM WITH THE EVALUATION COPY. Simply  copy all
  34. of  the files but REGISTER.EXE. Better still, compile the two PowerBatch source
  35. files  PBCLONE.PWR  and  MOVESUB.PWR  and  use  these  to  create  a  clone  of
  36. PowerBatch. PBCLONE uses  MOVESUB as a subroutine and is an  example of the use
  37. of  subroutines  in  PowerBatch.  Anyone  who  uses  the  registration  program
  38. REGISTER.EXE will imbed your name and serial number within their software.
  39.  
  40.                                    QUICK LOOK
  41.  
  42. If you wish to take a quick look at the capabilities of PowerBatch:
  43.     1) Copy all PowerBatch files to a single directory (ie PBTEST)
  44.     2) Generate example files... ---> EXAMPLES <enter>
  45.     3) Compile DEMO2...          ---> POWERMAK DEMO2 <enter>
  46.     4) Run DEMO2...              ---> DEMO2 <enter>
  47.  
  48.                                  Change Record
  49. V1.0-1.3 were alpha and beta test versions not available to the public.
  50. V1.4    Added BreakOn, BreakOff, and ?EnvStr commands.
  51.  
  52.         Fixed bug in keyboard input routine which was incorrectly handling a
  53.         single keystroke.
  54.  
  55.         Changed execution of DOS commands to prevent loading of another copy of
  56.         command processor.
  57.  
  58.         Changed beep command to default to 1 repetition.
  59.  
  60. V1.4a   Added SetPath, Prompt, and SetEnv commands to allow changing of
  61.         environment variables in the master and current environment.
  62.  
  63. V1.4b   Rewrote the routine which gets another output file name if the default
  64.         name is not acceptable.
  65.  
  66. V1.4c   Fixed bug in SetVar command which was damaging the path environment
  67.         variable in the current environment area.
  68.  
  69.         Added error messages to commands which set environment variables in
  70.         both current and master environment areas if the environment area was
  71.         not found or the change or addition exceeded the amount of free space
  72.         available in the environment area.
  73.  
  74.         Fixed bug which was truncating the POWERBAT.ERR file if fatal compile
  75.         errors existed.
  76.  
  77.         Enabled stdout redirection from within PowerBatch. ie Pgmname > nul
  78.  
  79. V1.4d   Added special character indicator to READKEY command.
  80.  
  81.         Added ADD and SUBTRACT commands. Provides a means to loop N times.
  82.  
  83. V1.4e   Added ability to escape from routine which prompts user for valid input
  84.         source file name if none is given or an error is detected.
  85.  
  86.         Characters which are not on the keyboard may be defined using the
  87.         decimal value of the character ie "Variable Enter,2,#17#217"
  88.  
  89.         Added the ability to define color changes within a stream of text. The
  90.         trigger character is Ctrl-A and this is followed by the THREE digit
  91.         color attribute. Ctrl-A may usually be generated in your editor by
  92.         pressing Alt-1 (the 1 on the keypad). These colors may be imbedded in
  93.         variables or literals. (@=Ctrl-A for the example).
  94.         Variable CmdLine,75,"@112F@007ile @112T@oo7ext..."
  95.         WriteAt  5,3,"@112F@007ile @112T@007ext..."
  96.  
  97.         Fixed bug in stdout redirection. Previously only > nul was correct.
  98.  
  99. V1.4f   Corrected bug in parser which was not properly handling lines of source
  100.         that were empty.
  101.  
  102.         Added +D2 switch to insure DOS 2.0 compatability.
  103.  
  104. V1.4g   Corrected incompatability with DOS 4.01 with share active.
  105.  
  106.         Made CD a synonym of CHDIR.
  107.  
  108.         Deleted POWERBAT.ERR if no errors and no map
  109.  
  110.         Opened output .EXE with filemode=readonly. Some virus checkers were
  111.         reporting possible virus because of open with read/write on .EXE file.
  112.  
  113.         Deletes POWERBAT.ERR if no errors and no map
  114.  
  115. V1.4h   Added a new box type BOX4. This box is a single line border with a
  116.         shadow. The syntax is the same as for other boxes.
  117.  
  118.         The description of the BOOT command was inadvertantly omitted from the
  119.         documentation. The syntax of the command is simply BOOT (with no
  120.         operands). This will cause the system to perform a warm boot.
  121.  
  122. V1.4j   Corrected several bugs introduced in 1.4h. Version number wrong on
  123.         title line, external program execution flawed, compare command caused
  124.         program to loop to beginning. Released in haste...
  125.  
  126.         A new demo file has been added to the program disk as well as
  127.         some additional utilities. In order to accomodate these extra files,
  128.         the utilities and the examples have been compressed into two
  129.         self-extracting files, BONUS.EXE and EXAMPLES.EXE. To create the
  130.         individual files, run these two programs and they will create the files
  131.         for you. The new demo file (DEMO2.PWR) shows how to create professional
  132.         pop-up type menus, using key letters to make the selections. The key
  133.         letters are shown with contrasting colors imbedded in the text string.
  134.  
  135.                                Current Wish List
  136.  
  137. -Add Echo On and Echo Off
  138. -Check to see if a key has been pressed (?KEYWAIT maybe)
  139. -Ability to flush the keyboard
  140. -Subroutines
  141. -Turn the cursor on and off
  142. -Read and write files
  143. -Report file sizes
  144. -Make shortnames for commands ie VAR
  145.  
  146.